home *** CD-ROM | disk | FTP | other *** search
/ Pluspack 1 / Caligari Corporation Pluspack1 1998.iso / TSX_SDK / tsxINC / tsxScene.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-28  |  2.4 KB  |  78 lines

  1. //******************************************************************************
  2. //    File: tsxScene.cpp
  3. //  Module: trueSpace eXtensions API
  4. //   Descr: Definition of tsxSCENE
  5. //******************************************************************************
  6.  
  7. #ifndef TSXSCENE_H
  8. #define TSXSCENE_H
  9.  
  10. #include "tsxTypes.h"
  11.  
  12. //------------------------------------------------------------------------------
  13. //------------------------------------------------------------------------------
  14.  
  15. // There is always one and only one scene in trueSpace.
  16. // tsxSCENE adds the following information to tsxSOBJ:
  17. //      - Fog parms
  18.  
  19.  
  20. //------------------------------------------------------------------------------
  21. //    Scene, Graph access
  22. //------------------------------------------------------------------------------
  23.  
  24. // Get the trueSpace scene.
  25. TSXAPIFN tsxSCENE* tsxGetScene();
  26.  
  27. // Adds pGNode as top-level member of scene, and makes it the current selection.
  28. // IF bNoDraw is TRUE THEN the object will not be drawn in this function call.
  29. // pGNode must be a new object not already in Scene.
  30. TSXAPIFN void tsxSceneAddObject( tsxGNODE* pGNode, tsxBOOL bNoDraw );
  31.  
  32. // Get the first top level GNode.
  33. // The rest can be accessed using `tsxGNodeGetNext'.
  34. TSXAPIFN tsxGNODE* tsxSceneGetFirstNode();
  35.  
  36. //------------------------------------------------------------------------------
  37. //    Fog
  38. //------------------------------------------------------------------------------
  39.  
  40. // Returns tsxTRUE for Fog On.
  41. TSXAPIFN tsxBOOL tsxSceneIsFogOn();
  42.  
  43. // Use tsxTRUE to set Fog On.
  44. TSXAPIFN void tsxSceneSwitchFog( tsxBOOL fog_on );
  45.  
  46. //
  47. TSXAPIFN void tsxSceneGetFogParms(
  48.     unsigned int* pFogRed,    //0 - 255
  49.     unsigned int* pFogBlue,    //0 - 255
  50.     unsigned int* pFogGreen,    //0 - 255
  51.     int*       pFogNear,
  52.     int*       pFogFar,
  53.     int*      pFogMax
  54.     );
  55.  
  56. //
  57. TSXAPIFN void tsxSceneSetFogParms(
  58.     unsigned int FogRed,    //0 - 255
  59.     unsigned int FogBlue,    //0 - 255
  60.     unsigned int FogGreen,    //0 - 255
  61.     int      FogNear,
  62.     int      FogFar,
  63.     int           FogMax
  64.     );
  65.  
  66.  
  67.  
  68. //------------------------------------------------------------------------------
  69. //    Rendering
  70. //------------------------------------------------------------------------------
  71.  
  72. // (Re)Draw the scene in the active View, in the View's rendering mode.
  73. TSXAPIFN void tsxSceneDraw();
  74.  
  75.  
  76. //******************************************************************************
  77. #endif //TSXSCENE_H
  78.